home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / linuxcon.000 / linuxcon / linuxconf-1.6 / dialog / dialog.p < prev    next >
Text File  |  1996-07-31  |  4KB  |  126 lines

  1. /* _dict.c 14/04/96 23.56.26 */
  2. /* base64.c 16/07/96 01.22.14 */
  3. void base64_decode (char *dst, const char *bufcoded);
  4. /* buttons.c 02/06/96 16.34.14 */
  5. /* checkbox.c 23/07/96 00.01.58 */
  6. /* checklist.c 28/12/95 01.26.46 */
  7. int dialog_checklist (const char *title,
  8.      const char *prompt,
  9.      const char *helpfile,
  10.      int ,
  11.      int item_no,
  12.      char **items,
  13.      char *status);
  14. /* checklist1.c 19/06/95 22.37.02 */
  15. int dialog_checklist_p (const char *title,
  16.      const char *prompt,
  17.      const char *helpfile,
  18.      int list_height,
  19.      int item_no,
  20.      char **items);
  21. /* cmdsock.c 12/05/96 00.14.12 */
  22. void logevent (const char *fmt, ...);
  23. void logdebug (int level, const char *fmt, ...);
  24. /* def.c 30/03/96 00.21.00 */
  25. /* diaetc.c 24/03/96 20.49.38 */
  26. void dialog_end (void);
  27. void init_dialog (void);
  28. void color_setup (void);
  29. void attr_clear (WINDOW *win, int height, int width, chtype attr);
  30. void print_button (WINDOW *win,
  31.      const char *label,
  32.      int y,
  33.      int x,
  34.      int selected);
  35. void draw_box (WINDOW *win,
  36.      int y,
  37.      int x,
  38.      int height,
  39.      int width,
  40.      chtype box,
  41.      chtype border_light,
  42.      chtype border_shadow);
  43. void draw_shadow (WINDOW *, int , int , int , int);
  44. /* dialog.c 02/06/96 16.48.12 */
  45. void dialog_clear (void);
  46. /* fcombo.c 27/08/95 13.02.36 */
  47. /* fcombom.c 15/12/95 23.50.02 */
  48. /* field.c 22/07/96 23.57.44 */
  49. /* fldnum.c 22/07/96 23.58.54 */
  50. /* fstrhelp.c 05/10/95 23.38.10 */
  51. /* ftitle.c 19/07/96 11.04.24 */
  52. /* html.c 23/07/96 00.03.18 */
  53. const char *html_getval (const char *key);
  54. const char *html_getoldval (const char *key);
  55. void html_defvar (const char *type,
  56.      const char *name,
  57.      const char *value,
  58.      const char *opt);
  59. void html_defvar (const char *type,
  60.      const char *name,
  61.      int value,
  62.      const char *opt);
  63. void html_defvarcur (const char *name, const char *value);
  64. void html_defvarcur (const char *name, int value);
  65. void html_printf (const char *ctl, ...);
  66. void html_flush (void);
  67. void html_sethost (const char *_hostname, int _port);
  68. void html_setaref (const char *key, const char *text);
  69. void html_formatkey (char *key, const char *ctl, ...);
  70. void html_needpasswd (void);
  71. void html_forgetdialog (DIALOG *dia);
  72. void html_setpopup (void);
  73. int html_get (int _debug, HELP_FILE&intro);
  74. /* inputbox.c 07/11/95 23.34.36 */
  75. MENU_STATUS dialog_inputbox (const char *title,
  76.      const char *prompt,
  77.      const char *helpfile,
  78.      char inpstr[MAX_LEN+1]);
  79. MENU_STATUS dialog_inputpass (const char *title,
  80.      const char *prompt,
  81.      const char *helpfile,
  82.      char inpstr[MAX_LEN+1]);
  83. /* internal.c 05/10/95 23.26.44 */
  84. /* kbd.c 09/03/96 23.28.14 */
  85. void dialog_settimeout (int nbsec, MENU_STATUS retcod, bool rearm);
  86. void dialog_starttimeout (void);
  87. int dialog_getcurtimeout (void);
  88. int dialog_wgetch (WINDOW *w, MENU_STATUS&timeout_button);
  89. /* main.c 04/12/95 00.07.50 */
  90. /* menubox.c 19/07/96 11.33.34 */
  91. MENU_STATUS dialog_menu (const char *title,
  92.      const char *prompt,
  93.      const char *helpfile,
  94.      int options,
  95.      int item_no,
  96.      char **items,
  97.      int &sel);
  98. /* msgbox.c 02/06/96 23.26.46 */
  99. int dialog_msgbox (const char *title,
  100.      const char *prompt,
  101.      const char *icon);
  102. /* multi.c 18/06/96 01.05.26 */
  103. int dialog_textsize (const char *txt, int *width);
  104. WINDOW *dialog_openwin (int height, int width);
  105. void dialog_draw (WINDOW *dialog,
  106.      const char *title,
  107.      const char *intro,
  108.      int height,
  109.      int width);
  110. void dialog_setmode (DIALOG_MODE mode);
  111. /* radio.c 22/07/96 23.54.12 */
  112. /* rc.c 28/12/95 01.26.18 */
  113. void create_rc (char *filename);
  114. int parse_rc (void);
  115. /* term.c 01/06/96 13.06.18 */
  116. /* textbox.c 31/07/96 22.20.42 */
  117. void textbox_expandtab (const char *src, char *dst, int maxsiz);
  118. MENU_STATUS dialog_textbox (const char *title, const char *file);
  119. MENU_STATUS dialog_textbox (const char *title, const SSTRINGS&strs);
  120. /* varval.c 22/07/96 21.29.38 */
  121. HTML_VARVAL *varval_get (const char *key);
  122. /* yesno.c 03/08/95 22.25.26 */
  123. MENU_STATUS dialog_yesno (const char *title,
  124.      const char *prompt,
  125.      const char *helpfile);
  126.